home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / printf.c < prev    next >
C/C++ Source or Header  |  1988-07-28  |  2KB  |  66 lines

  1. /* 
  2.  * printf.c --
  3.  *
  4.  *    Source code for the "printf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: printf.c,v 1.6 88/07/28 17:18:40 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * printf --
  27.  *
  28.  *    Format and print one or more values, writing the output onto
  29.  *    stdout.  See the manual page for details of how the format
  30.  *    string is interpreted.
  31.  *
  32.  * Results:
  33.  *    The return value is a count of the number of characters
  34.  *    written to stdout.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. #ifndef lint
  43. int
  44. printf(va_alist)
  45.     va_dcl            /* char *format, then any number of additional
  46.                  * values to be printed as described by
  47.                  * format. */
  48. {
  49.     char *format;
  50.     va_list args;
  51.  
  52.     va_start(args);
  53.     format = va_arg(args, char *);
  54.     return vfprintf(stdout, format, args);
  55. }
  56. #else
  57. /* VARARGS1 */
  58. /* ARGSUSED */
  59. int
  60. printf(format)
  61.     char *format;
  62. {
  63.     return 0;
  64. }
  65. #endif lint
  66.